home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / anydbm.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  3KB  |  91 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. """Generic interface to all dbm clones.
  5.  
  6. Instead of
  7.  
  8.         import dbm
  9.         d = dbm.open(file, 'w', 0666)
  10.  
  11. use
  12.  
  13.         import anydbm
  14.         d = anydbm.open(file, 'w')
  15.  
  16. The returned object is a dbhash, gdbm, dbm or dumbdbm object,
  17. dependent on the type of database being opened (determined by whichdb
  18. module) in the case of an existing dbm. If the dbm does not exist and
  19. the create or new flag ('c' or 'n') was specified, the dbm type will
  20. be determined by the availability of the modules (tested in the above
  21. order).
  22.  
  23. It has the following interface (key and data are strings):
  24.  
  25.         d[key] = data   # store data at key (may override data at
  26.                         # existing key)
  27.         data = d[key]   # retrieve data at key (raise KeyError if no
  28.                         # such key)
  29.         del d[key]      # delete data stored at key (raises KeyError
  30.                         # if no such key)
  31.         flag = key in d   # true if the key exists
  32.         list = d.keys() # return a list of all existing keys (slow!)
  33.  
  34. Future versions may change the order in which implementations are
  35. tested for existence, add interfaces to other dbm-like
  36. implementations.
  37.  
  38. The open function has an optional second argument.  This can be 'r',
  39. for read-only access, 'w', for read-write access of an existing
  40. database, 'c' for read-write access to a new or existing database, and
  41. 'n' for read-write access to a new database.  The default is 'r'.
  42.  
  43. Note: 'r' and 'w' fail if the database doesn't exist; 'c' creates it
  44. only if it doesn't exist; and 'n' always creates a new database.
  45.  
  46. """
  47.  
  48. class error(Exception):
  49.     pass
  50.  
  51. _names = [
  52.     'dbhash',
  53.     'gdbm',
  54.     'dbm',
  55.     'dumbdbm']
  56. _errors = [
  57.     error]
  58. _defaultmod = None
  59. for _name in _names:
  60.     
  61.     try:
  62.         _mod = __import__(_name)
  63.     except ImportError:
  64.         continue
  65.  
  66.     if not _defaultmod:
  67.         _defaultmod = _mod
  68.     
  69.     _errors.append(_mod.error)
  70.  
  71. if not _defaultmod:
  72.     raise ImportError, 'no dbm clone found; tried %s' % _names
  73.  
  74. error = tuple(_errors)
  75.  
  76. def open(file, flag = 'r', mode = 438):
  77.     whichdb = whichdb
  78.     import whichdb
  79.     result = whichdb(file)
  80.     if result is None:
  81.         if 'c' in flag or 'n' in flag:
  82.             mod = _defaultmod
  83.         else:
  84.             raise error, "need 'c' or 'n' flag to open new db"
  85.     elif result == '':
  86.         raise error, 'db type could not be determined'
  87.     else:
  88.         mod = __import__(result)
  89.     return mod.open(file, flag, mode)
  90.  
  91.